49ab2bb34bb5aab4e9d3358782e2cb263d165a4e,webconsole/src/main/java/org/apache/felix/webconsole/AbstractWebConsolePlugin.java,AbstractWebConsolePlugin,startResponse,#HttpServletRequest#HttpServletResponse#,533
Before Change
String header = MessageFormat.format( getHeader(), new Object[]
{ brandingPlugin.getBrandName(), title, appRoot, getLabel(), toUrl( brandingPlugin.getFavIcon(), appRoot ),
toUrl( brandingPlugin.getMainStyleSheet(), appRoot ), brandingPlugin.getProductURL(),
brandingPlugin.getProductName(), toUrl( brandingPlugin.getProductImage(), appRoot ),
getCssLinks( appRoot ) } );
pw.println( header );
After Change
r.put("head.title", title); //$NON-NLS-1$
r.put("head.label", getLabel()); //$NON-NLS-1$
r.put("head.cssLinks", getCssLinks(appRoot)); //$NON-NLS-1$
r.put("brand.name", brandingPlugin.getBrandName()); //$NON-NLS-1$
r.put("brand.product.url", brandingPlugin.getProductURL()); //$NON-NLS-1$
r.put("brand.product.name", brandingPlugin.getProductName()); //$NON-NLS-1$
r.put("brand.product.img", toUrl( brandingPlugin.getProductImage(), appRoot )); //$NON-NLS-1$
r.put("brand.favicon", toUrl( brandingPlugin.getFavIcon(), appRoot )); //$NON-NLS-1$
r.put("brand.css", toUrl( brandingPlugin.getMainStyleSheet(), appRoot )); //$NON-NLS-1$
}